Skip to main content

All Questions

Tagged with
11votes
3answers
34kviews

Should I use the Date type in JAX-RS @PathParam?

This is what I'm thinking about doing on a JEE Glassfish server using Jersey. @GET @Path("/{name}/{date}") public String getMessages(@PathParam("name") String name, @PathParam("date") Date date) I ...
Jazzepi's user avatar

close